@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --swiper-theme-color: #000 !important;
    --primary-color: #254666;
    --primary-color-light: #2e5a7f;
    --secondary-color: #ecd8a8;
    --secondary-color-light: #eceae2;
    --text-color: #414243;
    --color-black: black;
    --color-lightgrey: rgb(226, 223, 223);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--color-black);
}

.desktop-hide {
    display: none;
}

.mobile-hide {
    display: block;
}


/* HEADER STYLE */
.headerContainer {
    position: absolute;
    z-index: 100;
    width: 100%;
    background-color: white;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.headerContainer.sticky {
    position: fixed;
    top: 0;
    background-color: white;
    transition: all 0.2s ease-in-out;
    animation: fadeInDown 0.5s both 0.1s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.topHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 5px;
}

.topHeader .leftSide {
    display: flex;
    align-items: center;
}

.topHeader .leftSide .logo {
    height: 40px;
    width: auto;
}

.topHeader .rightSide {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;

    .searchBoxContainer,
    .languageBoxContainer {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        width: auto;
        padding: 10px;
        height: auto;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

        form {
            input[type=text] {
                font-size: 16px;
                font-weight: 300;
                border: none;
                padding: 0 10px;
            }

            button {
                background-color: var(--primary-color);
                border: none;
                padding: 5px 25px;
                font-size: 12px;
                text-transform: uppercase;
                font-weight: 600;
                color: white;
                border-radius: 50px;
                transition: all 0.3s ease;
            }

            button:hover {
                background-color: var(--secondary-color);
                color: var(--primary-color);
            }
        }
    }


    .languageBoxContainer {
        top: 165%;
        width: auto;
        left: 0;
        right: inherit;
        display: flex;
        flex-direction: column;
        gap: 10px;

        .languageItem {
            display: flex;
            align-items: center;
            gap: 5px;

            .flag {
                display: flex;
                align-items: center;
                justify-content: center;

                svg {
                    height: 18px;
                    width: 18px;
                }
            }

            span {
                font-size: 14px;
                font-weight: 400;
            }
        }

    }

    .searchBoxContainer.active,
    .languageBoxContainer.active {
        opacity: 1;
        visibility: visible;
    }
}

.topHeader .rightSide .menu ul {
    display: flex;
}

.topHeader .rightSide .menu ul li {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
}

.topHeader .rightSide .menu ul li a {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0px;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.topHeader .rightSide .menu ul li:hover a {
    color: var(--primary-color-light);
}

.topHeader .rightSide .menu ul li a svg {
    height: 10px;
    width: 20px;
    fill: black;
}

.topHeader .rightSide .menu ul li .subMenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    height: auto;
    width: max-content;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 0px 0px 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.topHeader .rightSide .menu ul li .subMenu ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
}

.topHeader .rightSide .menu ul li .subMenu ul li {
    padding: 7px 15px 5px 10px;
    border-bottom: 1px solid lightgrey;
}

.topHeader .rightSide .menu ul li .subMenu ul li:last-child {
    border-bottom: none;
}

.topHeader .rightSide .menu ul li:hover .subMenu {
    opacity: 1;
    visibility: visible;
}

.topHeader .rightSide .nonMenu {
    display: flex;
    gap: 10px;
    position: relative;
}

.topHeader .rightSide .nonMenu .searchIcon,
.topHeader .rightSide .nonMenu .languageSwitch {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.topHeader .rightSide .nonMenu .searchIcon svg,
.topHeader .rightSide .nonMenu .languageSwitch svg {
    height: 13px;
    width: 13px;
    fill: black;
}

.topHeader .rightSide .nonMenu .appointmentBtn {
    background-color: var(--primary-color);
    padding: 3px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.topHeader .rightSide .nonMenu .appointmentBtn a {
    color: white;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.topHeader .rightSide .nonMenu .appointmentBtn:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);

    a {
        color: var(--primary-color);
    }
}

.topHeader .rightSide .menuIcon {
    display: none;
    align-items: center;
}

.topHeader .rightSide .menuIcon svg {
    height: 20px;
    width: 20px;
    fill: var(--primary-color);
    stroke: var(--primary-color);
    stroke-width: 2px;
}

@media (max-width: 1400px) {
    .topHeader .rightSide .menuIcon {
        display: none;
    }

    .topHeader {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 1024px) {
    .topHeader {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .topHeader .rightSide .menu {
        display: none;
    }

    .topHeader .rightSide .nonMenu {
        display: none;
    }

    .topHeader .rightSide .menuIcon {
        display: flex;
    }
}



/* Aside Style */

.aside {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    background-color: var(--primary-color);
    z-index: 1000;
    height: 100vh;
    overflow-y: scroll;
    transform: translateX(-100%);
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.aside .asideInner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aside .asideInner .closeIcon {
    justify-content: end;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 15px;
}

.aside .asideInner .closeIcon svg {
    height: 30px;
    width: 30px;
    fill: var(--secondary-color);
}

.aside .asideInner .menu {
    margin-top: 20px;
    margin-bottom: 50px;
}

.aside .asideInner .menu ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
}

.aside .asideInner .menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 1rem;
    color: white;
}

.aside .asideInner .menu ul li a svg {
    height: 15px;
    width: 15px;
    fill: white;
}

.aside .asideInner .menu ul li .subMenu {
    display: none;
}

.aside .asideInner .menu ul li:hover .subMenu {
    display: flex;
    padding-left: 20px;
}

.aside .asideInner .menu ul li:hover .subMenu ul li a {
    font-size: 0.90rem;
}

.aside .asideInner .searchArea {
    margin-top: 50px;
    margin-bottom: 75px;
}

.aside .asideInner .searchArea form {
    width: 100%;
    display: flex;
    align-items: center;
}

.aside .asideInner .searchArea input[type=search] {
    border: none;
    border-radius: 0;
    color: green;
    line-height: 1.5;
    background-color: transparent;
    padding: 0;
    margin: 0 2px;
    max-width: 100%;
    width: 100%;
    font-family: 'Montserrat';
}

.aside .asideInner .searchArea button {
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    border: none;
}

.aside .asideInner .searchArea button svg {
    height: 20px;
    width: 20px;
    fill: #726c6c;

}

.aside .asideInner .language {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.aside .asideInner .language span {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color-light);
}

.aside .asideInner .language svg {
    height: 20px;
    width: 20px;
    fill: var(--secondary-color-light);
}

.aside .asideInner .appointmentBtn {
    background-color: var(--primary-color);
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid var(--secondary-color);
}

.aside .asideInner .appointmentBtn a {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--secondary-color);
}

.aside .asideInner .languagePopUp {
    position: absolute;
    bottom: 30%;
    width: 100%;
    background-color: white;
    height: auto;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    gap: 20px;

    .languageItem {
        display: flex;
        align-items: center;
        gap: 10px;

        .flag {
            display: flex;
            align-items: center;
            justify-content: center;

            svg {
                height: 25px;
                width: 25px;
            }
        }

        span {
            font-size: 18px;
        }
    }
}

.aside .asideInner .languagePopUp.active {
    visibility: visible;
    opacity: 1;
}

@media (min-width: 1200px) {
    .aside {
        display: none;
    }
}

@media (min-width: 1400px) {
    .aside {
        display: none;
    }
}


.to-top {
    background-color: var(--primary-color);
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.to-top.active {
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

/* Footer Style */
.aboveFooter {
    background-color: var(--primary-color);
    padding-top: 30px;
    padding-bottom: 30px;
}

.aboveFooter .aboveFooterInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aboveFooter .aboveFooterInner .text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.aboveFooter .aboveFooterInner .button {
    padding: 5px 35px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.aboveFooter .aboveFooterInner .button:hover {
    background-color: var(--primary-color-light);
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
}

footer .logo {
    display: flex;
}

footer .logo img {
    width: 150px;
    height: auto;
}

.footerContainer {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 50px;
    padding-bottom: 30px;
}

.footerContainer .topFooter {
    display: flex;
    justify-content: space-between;
}

.footerContainer .topFooter .leftSide {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footerContainer .topFooter .leftSide .address span {
    font-size: 0.85rem;
    color: var(--primary-color);
    line-height: 1.5;
}

.footerContainer .topFooter .leftSide .contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footerContainer .topFooter .leftSide .contact .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footerContainer .topFooter .leftSide .contact .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerContainer .topFooter .leftSide .contact .item .icon svg {
    width: 17px;
    aspect-ratio: 1;
    stroke: var(--primary-color);
    stroke-width: 0.5px;
}

.footerContainer .topFooter .leftSide .contact .item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.footerContainer .topFooter .rightSide ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: end;
}

.footerContainer .topFooter .rightSide ul li a {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.footerContainer .footerLow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

.footerContainer .footerLow .copyRight span,
.footerContainer .footerLow .copyRight a {
    font-size: 0.8rem;
    color: var(--primary-color-light);
}

.footerContainer .footerLow .socialMedia {
    display: flex;
    gap: 15px;
}

.footerContainer .footerLow .socialMedia .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerContainer .footerLow .socialMedia .item svg {
    width: 13px;
    aspect-ratio: 1;
    fill: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.footerContainer .footerLow .socialMedia .item svg:hover {
    fill: var(--secondary-color);
}


@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .footerContainer .topFooter {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 50px;
        align-items: start;
    }

    .footerContainer .topFooter .rightSide ul {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: start;
    }

    .footerContainer .footerLow {
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding-top: 50px;
        flex-direction: column-reverse;
        gap: 50px;
    }

    .aboveFooter .aboveFooterInner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 30px;
    }
}


/* Homepage Style */

.homepageTopSection .image {
    position: relative;
}

.homepageTopSection .image .content {
    position: absolute;
    width: 100%;
    bottom: 40%;
    left: 0;
}

.homepageTopSection .image .content .title {
    padding-bottom: 5px;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
}

.homepageTopSection .image .content .miniTitle {
    color: var(--primary-color-light);
    font-weight: 200;
    padding-bottom: 5px;
    font-size: 1.6rem;
}

.homepageTopSection .image .content p {
    color: var(--primary-color);
    padding-bottom: 20px;
    font-weight: 400;
    font-size: 0.85rem;
    width: 50%;
}

.homepageTopSection .image .content a.button {
    background-color: var(--secondary-color);
    padding: 5px 25px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--secondary-color);
}

.homepageTopSection .image .content a.button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {
    .homepageTopSection .image .content {
        bottom: 30%;
    }

    .homepageTopSection .image .content .title {
        font-size: 2rem;
    }

    .homepageTopSection .image .content .miniTitle {
        font-size: 1.5rem;
    }

    .homepageTopSection .image .content p {
        width: 60%;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .homepageTopSection .image .content p {
        width: 100%;
    }
}


.miniImage {
    display: flex;
    justify-content: center;
}

.miniImage img {
    width: 50%;
    height: auto;
}

.customMiniTitle {
    color: var(--primary-color-light);
    text-transform: capitalize;
    font-weight: 300;
    font-size: 0.85rem;
}

.customTitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 25px;
    padding-bottom: 17px;
}

.customDescription {
    color: var(--text-color);
    line-height: 1.3;
    font-size: 0.85rem;
    padding-bottom: 15px;
}

.shortSummary {
    display: flex;
    padding-top: 20px;
    padding-bottom: 10px;
}

.shortSummary .item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shortSummary .item .number {
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color);
}

.shortSummary .item .detail {
    font-weight: 500;
    color: var(--primary-color-light);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.customButton {
    background-color: var(--primary-color);
    width: fit-content;
    padding: 5px 20px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}

.customButton a {
    color: white;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.customButton:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.customButton:hover a {
    color: var(--primary-color);
}

.gridHomepage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    padding-top: 30px;
}

.gridHomepageItem {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.gridHomepageItem .image {
    overflow: hidden;
    border-radius: 10px;
}

.gridHomepageItem .image img {
    opacity: 1;
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.gridHomepageItem .image:hover img {
    opacity: 0.5;
}

.gridHomepageItem .content .title {
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .gridHomepage {
        grid-template-columns: 1fr;
    }

    .customTitle {
        font-size: 1.40rem;
    }
}

.backgroundSvg {
    position: absolute;
    bottom: -10px;
    left: 5%;
    opacity: 0.1;

    svg {
        width: 60%;
        height: auto;
    }
}

.backgroundSvgTop {
    position: absolute;
    top: -10px;
    right: 5%;
    opacity: 0.1;
    transform: rotate(180deg);

    svg {
        width: 60%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .backgroundSvg {
        svg {
            width: 40%;
        }
    }

    .backgroundSvgTop {
        svg {
            width: 40%;
        }
    }
}


.topBackgroundCoverSection .image {
    position: relative;
    background-color: var(--primary-color);

    picture {
        opacity: 0.85;
    }
}



.topBackgroundCoverSection .image .content {
    position: absolute;
    width: 100%;
    bottom: 40%;
    left: 0;
}

.topBackgroundCoverSection .image .content .title {
    padding-bottom: 5px;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
}

.topBackgroundCoverSection .image .content .miniTitle {
    color: var(--primary-color-light);
    font-weight: 200;
    padding-bottom: 5px;
    font-size: 1.6rem;
}

.topBackgroundCoverSection .image .content p {
    color: var(--primary-color);
    padding-bottom: 20px;
    font-weight: 400;
    font-size: 0.85rem;
    width: 50%;
}

.topBackgroundCoverSection .image .content a.button {
    background-color: var(--secondary-color);
    padding: 5px 25px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--secondary-color);
}

.topBackgroundCoverSection .image .content a.button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {
    .topBackgroundCoverSection .image .content {
        bottom: 40%;
    }

    .topBackgroundCoverSection .image .content .title {
        font-size: 2rem;
    }

    .topBackgroundCoverSection .image .content .miniTitle {
        font-size: 1.5rem;
    }

    .topBackgroundCoverSection .image .content p {
        width: 60%;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .topBackgroundCoverSection .image .content p {
        width: 100%;
    }
}

.awardSection {
    background-color: white;
}

.awardSection .aboutUsAwardSwiper .swiper {
    width: 100%;
    height: 100%;
}

.awardSection .aboutUsAwardSwiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.awardSection .aboutUsAwardSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 175px;
    object-fit: contain;
}

.keyValueGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;
}

.keyValueGrid .itemKeyValue {
    background-color: var(--primary-color);
    padding: 30px;
}

.keyValueGrid .itemKeyValue .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
}

.keyValueGrid .itemKeyValue .icon svg {
    width: 40%;
    aspect-ratio: 1;
    fill: var(--secondary-color-light);
}

.keyValueGrid .itemKeyValue .title {
    text-align: center;
    padding-bottom: 20px;
    color: var(--secondary-color-light);
    font-weight: 600;
    font-size: 1.2rem;
}

.keyValueGrid .itemKeyValue .content {
    color: #ccc3c3;
    font-size: 0.75rem;
    line-height: 1.4;
}


@media (max-width: 576px) {
    .keyValueGrid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .keyValueGrid .itemKeyValue .title {
        font-size: 1.5rem;
    }

    .keyValueGrid .itemKeyValue .icon svg {
        width: 60%;
    }
}

.messageGMGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 100px;
}

.messageGMGrid .messageItem {
    padding-bottom: 30px;
}

.messageGMGrid .messageItem .iconTop {
    display: flex;
    align-items: center;
    justify-content: start;
}

.messageGMGrid .messageItem .iconTop svg {
    height: 50px;
    width: 50px;
    fill: var(--primary-color);
}

.messageGMGrid .messageItem .iconBottom {
    display: flex;
    align-items: center;
    justify-content: end;
}

.messageGMGrid .messageItem .iconBottom svg {
    height: 50px;
    width: 50px;
    fill: var(--primary-color);
    transform: rotate(180deg);
}

.messageGMGrid .messageItem .content {
    padding: 0px 50px 0px 50px;
}

.messageGMGrid .messageItem .content p {
    font-size: 0.85rem;
    line-height: 1.3;
}

.messageGMGrid .messageItem .content .fullName {
    padding-top: 30px;
}

.messageGMGrid .messageItem .content .fullName span {
    font-size: 0.85rem;
    font-weight: 600;
}

.messageGMGrid .messageItem .content .position {
    padding-bottom: 0px;
}

.messageGMGrid .messageItem .content .position span {
    font-size: 0.8rem;
    color: grey;
}

.messageGMGrid .messageItem .profile {
    padding: 0px 50px 0px 50px;
}

.messageGMGrid .messageItem .profile img {
    height: 100px;
    width: 100px;
    border-radius: 100px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

@media (max-width: 576px) {
    .messageGMGrid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.servicePageGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.servicePageGrid .serviceItem {
    overflow: hidden;
    background-color: var(--primary-color);
    padding: 20px;
    position: relative;
}

.servicePageGrid .serviceItem a {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.servicePageGrid .serviceItem a .icon {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicePageGrid .serviceItem a .icon img {
    width: 50%;
    height: 50%;
}

.servicePageGrid .serviceItem a .title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.servicePageGrid .serviceItem a .title span {
    color: white;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
}

.servicePageGrid .serviceItem::before {
    content: "";
    position: absolute;
    background-color: var(--secondary-color);
    width: 100%;
    height: 0%;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.servicePageGrid .serviceItem::after {
    content: "";
    position: absolute;
    background-color: var(--secondary-color);
    width: 100%;
    height: 0%;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.servicePageGrid .serviceItem:hover:before {
    height: 50%;
}

.servicePageGrid .serviceItem:hover:after {
    height: 50%;
}

@media (max-width: 576px) {
    .servicePageGrid {
        grid-template-columns: 1fr 1fr;
    }
}


.whyUsContainer {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.whyUsContainer .whyUsItem {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.whyUsContainer .whyUsItem h3.title {
    font-size: 1rem;
    font-weight: 700;
}

.whyUsContainer .whyUsItem p.description {
    font-size: 0.88rem;
    line-height: 1.5;
}

.menuList {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menuList .menuItem {
    background-color: var(--primary-color);
    padding: 8px 10px;
    position: relative;
}

.menuList .menuItem::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.menuList .menuItem::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.menuList .menuItem:hover:before {
    width: 50%;
}

.menuList .menuItem:hover:after {
    width: 50%;
}

.menuList .menuItem a {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 1;
}

.menuList .menuItem a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    max-width: 40px;
    min-width: 40px;
}

.menuList .menuItem a .icon img {
    width: 30px;
    aspect-ratio: 1;
    transition: all 0.3s ease-in-out;
}

.menuList .menuItem:hover a .icon img {
    filter: invert(100%);
}

.menuList .menuItem a .title {
    display: flex;
    align-items: center;
}

.menuList .menuItem a .title span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.menuList .menuItem:hover a .title span {
    color: black;
}

.menuList .menuItem.active {
    background-color: var(--secondary-color);
    padding: 8px 10px;
    position: relative;

    a .icon img {
        filter: invert(100%);
    }

    a .title span {
        color: black;
    }


}


.wordPressContentStyle {

    h1,
    h2,
    h3,
    h4,
    h5 {
        padding-bottom: 20px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--text-color);
        padding-bottom: 15px;
    }

    ul.wp-block-list {
        list-style: square;
        list-style-position: outside;
        margin-left: 10px;
        padding-bottom: 30px;

        li {
            font-size: 0.85rem;
            padding-bottom: 5px;

            ul {
                list-style: circle;
                padding-top: 10px;
                margin-left: 30px;
                padding-bottom: 5px;
            }
        }
    }

    img {
        width: 100%;
        height: auto;
    }
}

.teamsPageGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
}

.teamItem {
    a {
        display: flex;
        flex-direction: column;
        gap: 5px;

        .image {
            width: 100%;
            aspect-ratio: 1/1;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.3s ease-in-out;
            }
        }

        .detail {
            display: flex;
            flex-direction: column;

            .title {
                span {
                    font-size: 0.85rem;
                    font-weight: 600;
                }
            }

            .position {
                span {
                    color: #847c7c;
                    font-size: 0.80rem;
                }
            }
        }
    }
}

.teamItem:hover {
    a {
        .image {
            img {
                opacity: 0.7;
            }
        }
    }
}

.resourceProfileItem {
    a {
        display: flex;
        flex-direction: column;
        gap: 5px;

        .image {
            width: 100%;
            aspect-ratio: 4/6;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.3s ease-in-out;
            }
        }

        .detail {
            display: flex;
            flex-direction: column;

            .title {
                span {
                    font-size: 0.85rem;
                    font-weight: 400;
                }
            }

            .position {
                span {
                    color: #847c7c;
                    font-size: 0.80rem;
                }
            }
        }
    }
}

.resourceProfileItem:hover {
    a {
        .image {
            img {
                opacity: 0.7;
            }
        }
    }
}


.lawyerListGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.lawyerItem {
    display: flex;
    flex-direction: column;
    gap: 10px;

    .name {
        span {
            font-weight: 600;
            font-size: 0.80rem;
        }
    }
}

.summaryTable {
    display: flex;
    flex-direction: column;
    gap: 20px;

    span.title {
        font-size: 0.85rem;
    }

    .emailAndPhone {
        display: flex;
        flex-direction: column;
        gap: 5px;

        .item {
            display: flex;
            gap: 15px;
            align-items: center;

            .icon {
                font-weight: 800;
                color: var(--primary-color);
            }

            .text span {
                font-size: 0.85rem;
            }
        }
    }

    .socialMedia {
        display: flex;
        align-items: center;
        gap: 10px;

        .item {
            display: flex;
            align-items: center;
            justify-content: center;

            svg {
                width: 18px;
                aspect-ratio: 1 / 1;
                fill: var(--text-color);
                transition: all 0.3s ease;
            }

            svg:hover {
                fill: var(--primary-color);
            }
        }
    }
}

.relatedLawyerCarrousel {
    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


.filterBar {
    display: inline-block;
    text-align: center;
    width: 100%;

    label {
        background: #fff;
        padding: 6px 15px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        box-shadow: #EDEDED 0 0 0 1px inset, rgba(0, 0, 0, 0.05) 0 1px 2px 0;
        display: inline-block;
        font-weight: 500;
        font-size: 0.85rem;
        margin-top: 10px;
    }

    label:hover {
        background: rgba(0, 0, 0, 0.03);
        box-shadow: #CFCFCF 0 0 0 1px inset, rgba(0, 0, 0, 0.1) 0 1px 2px;
    }

    input {
        appearance: none;
        display: none;
    }

    input:focus {
        outline: none;
    }

    input:checked+label {
        box-shadow: var(--primary-color) 0 0 0 2px inset, rgba(0, 0, 0, 0.1) 0 1px 2px 1px;
    }
}

.outPagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customPagnition {
    display: flex;
    gap: 20px;
    align-items: center;
    transform: scale(0.8);

    .page-numbers {
        background-color: lightgray;
        padding: 5px 5px;
        width: 30px;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 600;
        color: var(--text-color);
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .page-numbers.current,
    .page-numbers:hover {
        background-color: var(--primary-color);
        color: white;
    }
}

.newsCotent {
    max-width: 100%;
    width: 700px;
    margin: 0 auto;
}

.relatedPost {
    padding-top: 50px;

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        font-size: 18px;
        display: flex;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.topCoverSinglePage {
    background-color: var(--primary-color);
}

.contactTitle {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.contactList {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    .item {
        display: flex;
        gap: 20px;

        .icon {
            font-weight: 800;
            color: var(--primary-color);
        }

        .content span {
            font-size: 0.95rem;
        }
    }
}

.bizHourList {
    display: flex;
    flex-direction: column;
    gap: 10px;

    .item {
        display: flex;
        gap: 20px;

        .icon {
            font-size: 1rem;
            color: var(--primary-color);
        }

        .content {
            font-size: 0.95rem;
        }
    }
}

.contactForm {
    .contact-page-contact-form {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .contact-page-contact-form form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-page-contact-form form input {
        border-radius: 30px;
        padding: 5px 20px;
        border: 1px solid lightblue;
        font-family: "Montserrat", serif;
    }

    .contact-page-contact-form form input::placeholder {
        font-family: "Montserrat", serif;
    }

    .contact-page-contact-form form textarea {
        border-radius: 10px;
        padding: 10px 20px;
        border: 1px solid lightblue;
        font-family: "Montserrat", serif;
        height: 200px;
    }

    .contact-page-contact-form form textarea::placeholder {
        font-family: "Montserrat", serif;
    }

    .contact-page-contact-form form button {
        border-radius: 30px;
        padding: 5px 20px;
        border: 2px solid var(--primary-color);
        background-color: var(--primary-color);
        color: white;
        font-size: 16px;
        font-family: "Montserrat", serif;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .contact-page-contact-form form button:hover {
        background-color: white;
        color: var(--primary-color);
    }

    @media (max-width: 576px) {
        .contact-page-contact-form {
            width: 100%;
        }
    }
}

.googleMap {
    overflow: hidden;
    border-radius: 20px;
    iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 4;
    }
}